From b9bba3ac8941e4561ef150517cf44943a42b99e7 Mon Sep 17 00:00:00 2001 From: Wollnashorn Date: Tue, 13 Jun 2023 18:07:08 +0200 Subject: video_core: Disable anisotropic filtering for samplers with depth compare --- src/video_core/textures/texture.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index 12372a004..083bfd8d3 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp @@ -62,8 +62,9 @@ std::array TSCEntry::BorderColor() const noexcept { } float TSCEntry::MaxAnisotropy() const noexcept { - if (max_anisotropy == 0 && (mipmap_filter != TextureMipmapFilter::Linear && - !Settings::values.use_aggressive_anisotropic_filtering)) { + if (max_anisotropy == 0 && (depth_compare_enabled.Value() || + (mipmap_filter != TextureMipmapFilter::Linear && + !Settings::values.use_aggressive_anisotropic_filtering))) { return 1.0f; } const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue(); -- cgit v1.2.3